home *** CD-ROM | disk | FTP | other *** search
/ Stone Design / Stone Design.iso / Stone_Friends / Wave / WavesWorld / Source / IBPalettes / WWTCLKit / aspectRatios.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-22  |  1.2 KB  |  43 lines

  1. /* Copyright 1993 Michael B. Johnson
  2.  * Permission to use, copy, modify, and distribute this
  3.  * software and its documentation for any non-commercial 
  4.  * purpose and without fee is hereby granted, provided that the 
  5.  * above copyright notice appears in all copies.  Michael B. Johnson
  6.  * makes no representations about the suitability of this
  7.  * software for any purpose.  It is provided "as is" without
  8.  * express or implied warranty.
  9.  *
  10.  * Permission to use, copy, modify or distribute this software
  11.  * and its documentation for any commercial purpose must be
  12.  * confirmed in writing with Michael B. Johnson.  He can be
  13.  * contacted at:
  14.  *              20 Ames St. E15-023G    
  15.  *              Cambridge, MA 02141
  16.  *              (617) 547 0563
  17.  *              
  18.  */
  19.  
  20.  
  21. // these are simply the tag ids for a set of aspect ratios...
  22.  
  23. #define WW_ASPECT_DONT_CARE  0
  24.  
  25. // NTSC is 4:3
  26. #define WW_ASPECT_NTSC       1
  27.  
  28. // Academy is 1.33:1
  29. #define WW_ASPECT_ACADEMY    1
  30.  
  31. #define WW_ASPECT_SQUARE     3 
  32. #define WW_ASPECT_CUSTOM     4
  33.  
  34. // American Widescreen is 1.85:1
  35. #define WW_ASPECT_AMERICAN_WIDESCREEN  5
  36.  
  37. // European Widescreen is 1.66:1
  38. #define WW_ASPECT_EUROPEAN_WIDESCREEN  6
  39.  
  40. // VistaVision is 2.21:1
  41. #define WW_ASPECT_VISTA_VISION          7
  42.  
  43.